home *** CD-ROM | disk | FTP | other *** search
/ Spiceworld The Movie - Interactive CD-ROM / Spiceworld The Movie: Interactive CD-ROM.iso / mac / ELEMENTS / spiceone.dir / 00002_Script_2 < prev    next >
Text File  |  1997-12-04  |  684b  |  26 lines

  1. on prepareFrame
  2.   global LOOPFRAME,VIDVOLUME
  3.   if not (LOOPFRAME = the frameLabel) then 
  4.     initialiseFrame
  5.     set the locV of sprite 3 to (290 - ((VIDVOLUME * 105)/256))
  6.     startTimer
  7.     if random(2) = 1 then set the member of sprite 6 to "long"
  8.     else set the member of sprite 6 to "short"
  9.     set the volume of sprite 6 to VIDVOLUME
  10.     set the movieRate of sprite 6 to 1
  11.   end if
  12. end
  13.  
  14.  
  15. on enterFrame
  16.   if the timer > 60 then
  17.     set the visible of sprite 5 to not(the visible of sprite 5)
  18.     startTimer
  19.   end if
  20.   if the movieRate of sprite 6 = 0 then go to frame "start" of movie the pathName &"spicetwo.dir"
  21. end
  22.  
  23. on exitFrame
  24. go to the frame
  25. end
  26.